|
Расположение в меню |
---|
Вид → Стандартные виды → Уместить всё |
Верстаки |
Все |
Быстрые клавиши |
V F |
Представлено в версии |
- |
См. также |
Уместить выделенное |
The Std ViewFitAll command zooms and pans the camera so that all visible objects fit inside the active 3D view.
Смотрите так же: Основы составления скриптов в FreeCAD.
Use the fitAll
method of the View object to zoom to fit all.
import FreeCADGui
view = FreeCADGui.ActiveDocument.ActiveView
view.fitAll()
For the active view the SendMsgToActiveView
method of the FreeCADGui object can also be used.
import FreeCADGui
FreeCADGui.SendMsgToActiveView("ViewFit")